home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000149_news@columbia.edu _Wed Dec 20 18:58:54 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with SMTP id SAA25859 for <kermit.misc@watsun>; Wed, 20 Dec 1995 18:58:54 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id SAA26674 for kermit.misc@watsun; Wed, 20 Dec 1995 18:58:52 -0500
  4. Path: news.columbia.edu!news.cs.columbia.edu!pipeline!newsjunkie.ans.net!howland.reston.ans.net!agate!news.ossi.com!aimnet.com!ns2.mainstreet.net!bug.rahul.net!a2i!rahul.net!a2i!ccnet.com!usenet
  5. From: gbernard@dbc.com (Greg Bernard)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: modem ats0
  8. Date: Wed, 20 Dec 1995 01:36:31 GMT
  9. Organization: CCnet Communications (510-988-7140 guest)
  10. Lines: 38
  11. Message-ID: <4b7pe9$cs5@ccnet2.ccnet.com>
  12. NNTP-Posting-Host: 199.217.9.49
  13. X-Newsreader: Forte Free Agent 1.0.82
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. Hi,
  17.  
  18. I am not sure if this is the right place for this post or not, but I
  19. shall try.
  20.  
  21. I have PC Kermit 3.18 on a Pentium, with a US Robotics 14.4 or 28.8
  22. modem (one at work, one at home).  I have a macro in my MSCUSTOM.INI
  23. file named goserver that I actually got some help with from this group
  24. a few months ago.  Ignoring the error handling, it goes something like
  25. this:
  26.  
  27. define goserver -
  28.     set com3 \x3e8 5, -
  29.     set port 3, -
  30.     set carrier on, -
  31.     set server login gbernard gbernard, -
  32.     set server timeout 0, -
  33.     server
  34.  
  35. Before I run the macro, I manually issue the command to the modem
  36. ats0=3 to tell it to pick on (after?) the third ring.  However, if I
  37. add the lines:
  38.  
  39.     out +++,
  40.     sleep 1,
  41.     ats0=3,
  42.     sleep 1,
  43.  
  44. after the macro definition and the set com3 line, then the modem will
  45. *never* pick up - it just rings and rings and rings.
  46.  
  47. So, my brain dead question is, is this a US Robotics modem bug, am I
  48. doing something stupid (always a strong possibility), or ???
  49.  
  50. TIA - any help would be greatly appreciated.
  51.